home *** CD-ROM | disk | FTP | other *** search
/ Keystone Learning XML: Introduction / Keystone Learning Introduction to XML.iso / Sample Files / chapter 3 / CDATA.XML next >
Encoding:
Extensible Markup Language  |  1999-12-07  |  648 b   |  22 lines

  1. <?xml version="1.0"?>
  2. <employees>
  3.     <employee id="A1234">
  4.         <name>
  5.             <first>John</first>
  6.             <last>Doe</last>
  7.         </name>
  8.         <position>Programmer</position>
  9.         <address>
  10.             <street>123 Main Street</street>
  11.             <city>Anywhere</city>
  12.             <state>CA</state>
  13.             <zip>92000</zip>
  14.         </address>
  15.         <phone>
  16.             <main>(714) 555-1000</main>
  17.             <fax>(714) 555-1001</fax>
  18.         </phone>
  19.     <![CDATA[<I>John</I> is a <B>technical lead</B> on several projects and has always worked well with his co-workers.]]>
  20.     </employee>
  21. </employees>
  22.